home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / HyperMail102.lha / HyperMail / file.h < prev    next >
C/C++ Source or Header  |  1995-06-18  |  565b  |  25 lines

  1. /*
  2. ** Copyright (C) 1994, Enterprise Integration Technologies Corp.        
  3. ** All Rights Reserved.
  4. ** Kevin Hughes, kevinh@eit.com
  5. ** 7/17/94
  6. */
  7.  
  8. /*
  9. ** Additions done by Joop van de Wege, Joop.vandeWege@medew.ento.wau.nl
  10. ** 6/17/95
  11. */
  12.  
  13. #ifdef AMIGA
  14. int isdirectory(char *path);
  15. int isfile(char *path);
  16. void checkdir(char *dir);
  17. void readconfigs( char *path, char *mbox, char *label, char *dir,
  18.      char *archives, char *about, int *overwrite, int *increment, char *defaultindex);
  19. #else
  20. int isdirectory();
  21. int isfile();
  22. void checkdir();
  23. void readconfigs();
  24. #endif
  25.